Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / users / {id} / role-mappings / clients / {client} / available

Get available client-level roles that can be mapped to the user

Path parameters:
realm - realm name (not id!)
id -
client -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/users/{id}/role-mappings/clients/{client}/availableGet available client-level roles that can be mapped to the user

Method Detail

GET /admin/realms/{realm}/users/{id}/role-mappings/clients/{client}/available

Get available client-level roles that can be mapped to the user

HTTP Example:
GET /admin/realms/{realm}/users/{id}/role-mappings/clients/{client}/available
API Example:

UserClientRoleMappingsResource.getAvailableClientRoleMappings({'realm': /* name realm name (not id!) */,
  'id': …,
  'client': …});

Output:
List<RoleRepresentation> -
Produces:
application/json

Keycloak REST Services 1.5.0-Final